// Locale mirror of `/` → renders `/de`. Re-exports the bare page verbatim // (the component reads its locale from the URL via the layout's provider, // and resolves the island's `labels` per-locale there); `getStaticPaths` // tells `voltro build` which locale-prefixed paths to emit. The default // locale is NOT listed here — it lives at the bare `/`. import { SUPPORTED_LOCALES, DEFAULT_LOCALE } from '../../lib/locale' export { default } from '../page' export { renderMode, interactive, meta } from '../page' export const getStaticPaths = async (): Promise> => SUPPORTED_LOCALES .filter((l) => l !== DEFAULT_LOCALE) .map((locale) => ({ params: { locale } }))